home *** CD-ROM | disk | FTP | other *** search
- module oModelPlugin is cPlugin
- has
- release Editor:
- GetIO()
- do
- result := oIOModelPlugin;
- end;
- end;
- end;
-
- release Editor:
-
- object oIOModelLabel is "Model";
-
- object oIOModelPlugin is cIOPlugin
- with
- AboutDialog is cUIAboutPluginDialog
- with
- HelpURL is "Model/index.htm";
- Label is oIOModelLabel;
- Text is "Box, Scroller, Document, Image, Movie, Panorama and Sound elements, events and commands.";
- end;
- ToolLines is [
- cIOToolListLine
- with
- Expanded is true;
- Label is oIOModelLabel;
- Lines is [
- cIOToolLine
- with
- Words is [
- oBoxCreator,
- oScrollerCreator
- ];
- end,
- cIOToolLine
- with
- Words is [
- oRectangleRegionEditor,
- oOvalRegionEditor,
- oPolygonRegionEditor,
- oLassoRegionEditor,
- oSeedRegionEditor,
- oFilterRegionEditor
- ];
- end
- ];
- end
- ];
- ElementLines is [
- cIOSeedListLine
- with
- Label is oIOModelLabel;
- Lines is [
- cIOSeedLine with IO is oIOBox; end,
- cIOSeedLine with IO is oIOScroller; end,
- cIOSeedLine with IO is oIODocument; end,
- cIOSeedLine with IO is oIOImage; end,
- cIOSeedLine with IO is oIOMovie; end,
- cIOSeedLine with IO is oIOSound; end,
- cIOSeedLine with IO is oIOPanorama; end
- ];
- end
- ];
- EventLines is [
- cIOSeedListLine
- with
- Label is oIOModelLabel;
- Lines is [
- cIOSeedLine with IO is oIOLoadedEvent; end,
- cIOSeedLine with IO is oIONotLoadedEvent; end,
- cIOSeedLine with IO is oIOOffscreenEvent; end,
- cIOSeedLine with IO is oIOOnscreenEvent; end,
- cIOSeedLine with IO is oIOTokenEvent; end,
- cIOSeedLine with IO is oIOMouseEnterEvent; end,
- cIOSeedLine with IO is oIOMouseLeaveEvent; end,
- cIOSeedLine with IO is oIOMouseDownEvent; end,
- cIOSeedLine with IO is oIOMouseIdleEvent; end,
- cIOSeedLine with IO is oIOMouseMovedEvent; end,
- cIOSeedLine with IO is oIOMouseUpEvent; end,
- cIOSeedLine with IO is oIOTimeEvent; end,
- cIOSeedLine with IO is oIOFinishedEvent; end,
- cIOSeedLine with IO is oIOFocusedEvent; end,
- cIOSeedLine with IO is oIOKeyboardEvent; end,
- cIOSeedLine with IO is oIOWireEvent; end,
- cIOSeedLine with IO is oIOHotPanoramaEvent; end
- ];
- end
- ];
- CommandLines is [
- cIOSeedListLine
- with
- Label is oIOModelLabel;
- Lines is [
- cIOSeedLine with IO is oIODragCommand; end,
- cIOSeedLine with IO is oIOEnableCommand; end,
- cIOSeedLine with IO is oIOFocusCommand; end,
- cIOSeedLine with IO is oIOGrowCommand; end,
- cIOSeedLine with IO is oIOOrderCommand; end,
- cIOSeedLine with IO is oIORunCommand; end,
- cIOSeedLine with IO is oIOScrollCommand; end,
- cIOSeedLine with IO is oIOSetBoxCommand; end,
- cIOSeedLine with IO is oIOSetElementCursorCommand; end,
- cIOSeedLine with IO is oIOSetFlipbookCommand; end,
- cIOSeedLine with IO is oIOSetPanoramaCommand; end,
- cIOSeedLine with IO is oIOSetRateCommand; end,
- cIOSeedLine with IO is oIOSetTimeCommand; end,
- cIOSeedLine with IO is oIOShowCommand; end,
- cIOSeedLine with IO is oIOSwitchURLCommand; end
- ];
- end,
- cIOSeedListLine
- with
- Label is "Runtime";
- Lines is [
- cIOSeedLine with IO is oIOBackCommand; end,
- cIOSeedLine with IO is oIOBrowseCommand; end,
- cIOSeedLine with IO is oIOQuickTimeEffectCommand; end,
- cIOSeedLine with IO is oIOSimpleEffectCommand; end,
- cIOSeedLine with IO is oIOLaunchCommand; end,
- cIOSeedLine with IO is oIOPageSetupCommand; end,
- cIOSeedLine with IO is oIOPrintCommand; end,
- cIOSeedLine with IO is oIOQuitCommand; end,
- cIOSeedLine with IO is oIORefreshCommand; end,
- cIOSeedLine with IO is oIOScreenSaverCommand; end,
- cIOSeedLine with IO is oIOSetRuntimeCursorsCommand; end,
- cIOSeedLine with IO is oIOSetVolumeCommand; end
- ];
- end,
- cIOSeedListLine
- with
- Label is "Special";
- Lines is [
- cIOSeedLine with IO is oIODisplayCommand; end,
- cIOSeedLine with IO is oIOMouseCommand; end,
- cIOSeedLine with IO is oIOTokenCommand; end,
- cIOSeedLine with IO is oIOPutTweenerCommand; end,
- cIOSeedLine with IO is oIORemoveTweenerCommand; end,
- cIOSeedLine with IO is oIODoCookieCommand; end,
- cIOSeedLine with IO is oIOIfCookieCommand; end,
- cIOSeedLine with IO is oIOElseIfCookieCommand; end,
- cIOSeedLine with IO is oIOElseCookieCommand; end,
- cIOSeedLine with IO is oIOReadWriteCookiesCommand; end
- ];
- end
- ];
- Openers is [
- oDocumentOpener,
- oImageOpener,
- oMovieOpener,
- oSoundOpener,
- oPanoramaOpener
- ];
- Root is cBox
- with
- Name is "Root";
- Width is 640; Height is 480;
- Enabled is false;
- end;
- end;
-
- end; -- release Editor
-